home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / mac / MACF / MGER.DIR / 00278_Script_278 < prev    next >
Text File  |  1995-10-10  |  674b  |  32 lines

  1. on mouseUp
  2.   global prev,gSound,MovieSeq,gSpeed
  3.   set gSpeed = 1
  4.   if prev>0 then
  5.     set prev = 0
  6.     set the visible of sprite 19 to FALSE
  7.     repeat with x = 13 to 18
  8.       set the visible of sprite x to TRUE
  9.       puppetSprite x,FALSE
  10.     end repeat
  11.     
  12.   end if
  13.   
  14.   set the SoundLevel = gSound
  15.   puppetSound "OPEN.AIF"
  16.   updateStage
  17.   stopQT
  18.   repeat with x = 3 to 7
  19.     set the visible of sprite x to TRUE
  20.     puppetSprite x,FALSE
  21.   end repeat
  22.   
  23.   set MovieSeq = FALSE
  24.   setbar
  25.   repeat with x = 46 to 47
  26.     puppetSprite x,TRUE
  27.     set the visible of sprite x to FALSE
  28.     puppetSprite x,FALSE
  29.   end repeat
  30.   UNLOADCAST
  31.   go "no"
  32. end